home *** CD-ROM | disk | FTP | other *** search
/ Total Web Page (Professional Suite) / Total Web Page 99.iso / CGI / REFERER.PL < prev    next >
Perl Script  |  1996-06-03  |  403b  |  16 lines

  1. #!/usr/bin/perl
  2. # Last Page Visited
  3. # Created by Matt Wright
  4. # Created on: 10/15/95          Last Modified on: 10/15/95
  5. # Version 1.0
  6. # Requires Server Side Includes
  7. # One way of doing it:
  8.  
  9. # <ul>
  10. # <li><!--#exec cgi="http://your.host.xxx/cgi-bin/referer.pl"-->
  11. # </ul>
  12.  
  13. print "Content-type: text/html\n\n";
  14. print "<a href=\"$ENV{'HTTP_REFERER'}\">";
  15. print "Return to the page you were last at.</a>\n";
  16.